Embed youtube “Shorts” videos
하우코드
본문
if( strcasecmp( 'www.youtube.com/watch', $link[2] ) == 0 && $this->params( $params, $link[3], 'v' ) )
return '<iframe width="'.$width.'" height="'.$height.'" src="'.$link[1].'www.youtube.com/embed/'.$params['v'].'?rel=0&playsinline=1&controls=1&showinfo=0&modestbranding=0" frameborder="0" allowfullscreen></iframe>';
else if( preg_match( '/youtube\.com\/shorts\/(\w+\s*\/?)*([0-9]+)*$/i', $link[2], $matches ) )
return '<iframe width="'.$width.'" height="'.$height.'" src="'.$link[1].'www.youtube.com/embed/'.$matches[1].'?rel=0&playsinline=1&controls=1&showinfo=0&modestbranding=0" frameborder="0" allowfullscreen></iframe>';
- 이전글아래는 PHP에서 정규식을 사용하여 문자열의 앞부분이 "abc"로 시작하는 경우를 "DEF"로 바꾸는 예제입니다. preg_replace() 함수를 사용하여 이 작업을 수행할 수 있습니다: 24.02.10
- 다음글PHP 여러개의 연속된 유튜브 주소 URL 파싱 추출 22.08.05
댓글목록
등록된 댓글이 없습니다.